From: Ken Brown Date: Thu, 12 Apr 2012 12:17:20 +0000 (-0400) Subject: * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398) X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~2326^2~2594^2~25 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=badf86af633711d67785cd11685f0cb209ee3983;p=emacs.git * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398) --- diff --git a/ChangeLog b/ChangeLog index e70cb9f0831..ea71d6e081a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-04-12 Ken Brown + + * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398) + 2012-04-11 Glenn Morris * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM. diff --git a/configure.in b/configure.in index 327427ff390..bd8e3d62299 100644 --- a/configure.in +++ b/configure.in @@ -3800,6 +3800,13 @@ to run if these resources are not installed." echo fi +if test "${opsys}" = "cygwin"; then + case `uname -r` in + 1.5.*) AC_MSG_WARN([[building Emacs on Cygwin 1.5 is not supported.]]) + echo + ;; + esac +fi # Remove any trailing slashes in these variables. [test "${prefix}" != NONE &&